home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / ma.dir / 01033_Movie Script Spillover.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  475 b   |  24 lines

  1. on keyDown
  2.   if the keyCode = 122 then
  3.     LaunchHelp()
  4.   end if
  5. end
  6.  
  7. on clearBoard aFlag
  8.   if voidp(aFlag) then
  9.     set aFlag to 1
  10.   end if
  11.   repeat with vI = 2 to 15
  12.     set the castNum of sprite vI to cast string("blank")
  13.   end repeat
  14.   repeat with vI = 16 to 39
  15.     set the locH of sprite vI to -71
  16.   end repeat
  17.   if aFlag then
  18.     set the visible of sprite 41 to 0
  19.     set the visible of sprite 42 to 0
  20.     set the visible of sprite 44 to 0
  21.   end if
  22.   updateStage()
  23. end
  24.